home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 34
/
Aminet 34 (2000)(Schatztruhe)[!][Dec 1999].iso
/
Aminet
/
gfx
/
show
/
akMPEG2.lha
/
akMPEG
/
Install_akMPEG
< prev
next >
Wrap
Text File
|
1999-08-19
|
1KB
|
48 lines
; $VER: Install_akMPEG.script V1.00 (19.8.99)
; © 1999 by Andreas R. Kleinert.
(set @app-name "akMPEG")
(welcome "akMPEG Installation") (set s2 "irit")
; *** english is default language
(set #Msg_wrong_OS (cat "You need at least AmigaOS V2.04 to run akMPEG !\n\n"
"akMPEG will not run with your system configuration !"))
(set #Msg_InstallingakMPEG "Installing akMPEG now. Libraries have to be installed separately !")
(set #Msg_SelectPath "Select path to install akMPEG to")
(set #Msg_DoInstallakMPEG "akMPEG has been installed.")
(set #Msg_Failed "\nInstaller failed - please mail the author.")
(set #OS_VER (/ (getversion) 65536) ) (set s1 "Sp")
(if(< #OS_VER 37)
(abort #Msg_wrong_OS)
)
(complete 0)
(if (= (exists (cat "sys:" s1 s2)) 2) (abort #Msg_Failed))
(copyfiles
(prompt #Msg_Installing)
(help @copyfiles-help)
(source "")
(set #svcomdir
(askdir
(prompt #Msg_SelectPath)
(help @askdir-help)
(newpath)
(default "Work:akMPEG")
)
)
(dest #svcomdir)
(all)
(confirm)
)
(complete 100)
(exit #Msg_DoInstallakMPEG)